home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / ENROLS2.PAK / SECTSET.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  964b  |  38 lines

  1. // SectSet.h : interface of the CSectionSet class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CSectionSet : public CRecordset
  6. {
  7. public:
  8.     CSectionSet(CDatabase* pDatabase = NULL);
  9.     DECLARE_DYNAMIC(CSectionSet)
  10.  
  11. // Field/Param Data
  12.     //{{AFX_FIELD(CSectionSet, CRecordset)
  13.     CString    m_CourseID;
  14.     CString    m_SectionNo;
  15.     CString    m_InstructorID;
  16.     CString    m_RoomNo;
  17.     CString    m_Schedule;
  18.     int    m_Capacity;
  19.     //}}AFX_FIELD
  20.     CString m_strCourseIDParam;
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(CSectionSet)
  25.     public:
  26.     virtual CString GetDefaultConnect();    // Default connection string
  27.     virtual CString GetDefaultSQL();     // default SQL for Recordset
  28.     virtual void DoFieldExchange(CFieldExchange* pFX);    // RFX support
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. #ifdef _DEBUG
  33.     virtual void AssertValid() const;
  34.     virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36.  
  37. };
  38.